using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace SymbolicComputation.AI
{
    public class HistoricalMoment
    {
        public Transform transform;
        public Int32 branchIndex;

        public HistoricalMoment(Transform inTransform, Int32 inBranchIndex)
        {
            transform = inTransform;
            branchIndex = inBranchIndex;
        }
    }
}